home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / misc / AmIDE.lha / AmIDE / Examples / hello.c next >
C/C++ Source or Header  |  2000-04-13  |  138b  |  13 lines

  1. /*
  2. ** Little example on how to make a project
  3. ** with AmIDE
  4. **
  5. */
  6.  
  7. #include <stdio.h>
  8.  
  9. void main(void)
  10. {
  11.     printf("Hello AmIDE user\n");
  12. }
  13.